home *** CD-ROM | disk | FTP | other *** search
/ Deutsche Edition 1 / Deutsche Edition 1.iso / amok / 081-090 / amok84 / reqtools_2.1d / include.lha / include / libraries / reqtools.h < prev    next >
C/C++ Source or Header  |  1993-01-22  |  20KB  |  634 lines

  1. #ifndef LIBRARIES_REQTOOLS_H
  2. #define LIBRARIES_REQTOOLS_H
  3. /*
  4. **    $Filename: libraries/reqtools.h $
  5. **    $Release: 2.1 $
  6. **    $Revision: 38.10 $
  7. **
  8. **    reqtools.library definitions
  9. **
  10. **    (C) Copyright 1991-1993 Nico François
  11. **    All Rights Reserved
  12. */
  13.  
  14. #ifndef    EXEC_TYPES_H
  15. #include <exec/types.h>
  16. #endif    /* EXEC_TYPES_H */
  17.  
  18. #ifndef    EXEC_LISTS_H
  19. #include <exec/lists.h>
  20. #endif    /* EXEC_LISTS_H */
  21.  
  22. #ifndef    EXEC_LIBRARIES_H
  23. #include <exec/libraries.h>
  24. #endif    /* EXEC_LIBRARIES_H */
  25.  
  26. #ifndef    EXEC_SEMAPHORES_H
  27. #include <exec/semaphores.h>
  28. #endif    /* EXEC_SEMAPHORES_H */
  29.  
  30. #ifndef LIBRARIES_DOS_H
  31. #include <libraries/dos.h>
  32. #endif  /* LIBRARIES_DOS_H */
  33.  
  34. #ifndef LIBRARIES_DOSEXTENS_H
  35. #include <libraries/dosextens.h>
  36. #endif  /* LIBRARIES_DOSEXTENS_H */
  37.  
  38. #ifndef LIBRARIES_DISKFONT_H
  39. #include <libraries/diskfont.h>
  40. #endif  /* LIBRARIES_DISKFONT_H */
  41.  
  42. #ifndef    GRAPHICS_TEXT_H
  43. #include <graphics/text.h>
  44. #endif    /* GRAPHICS_TEXT_H */
  45.  
  46. #ifndef UTILITY_TAGITEM_H
  47. #include <utility/tagitem.h>
  48. #endif    /* UTILITY_TAGITEM_H */
  49.  
  50. #define    REQTOOLSNAME         "reqtools.library"
  51. #define    REQTOOLSVERSION         38L
  52.  
  53. /***********************
  54. *                      *
  55. *     Preferences      *
  56. *                      *
  57. ***********************/
  58.  
  59. #define RTPREF_FILEREQ         0L
  60. #define RTPREF_FONTREQ         1L
  61. #define RTPREF_PALETTEREQ     2L
  62. #define RTPREF_SCREENMODEREQ     3L
  63. #define RTPREF_VOLUMEREQ     4L
  64. #define RTPREF_OTHERREQ         5L
  65. #define RTPREF_NR_OF_REQ     6L
  66.  
  67. struct ReqDefaults {
  68.    ULONG Size;
  69.    ULONG ReqPos;
  70.    UWORD LeftOffset;
  71.    UWORD TopOffset;
  72.     UWORD MinEntries;
  73.     UWORD MaxEntries;
  74.    };
  75.  
  76. struct ReqToolsPrefs {
  77.    /* Size of preferences (_without_ this field and the semaphore) */
  78.    ULONG PrefsSize;
  79.    struct SignalSemaphore PrefsSemaphore;
  80.    /* Start of real preferences */
  81.    ULONG Flags;
  82.    struct ReqDefaults ReqDefaults[RTPREF_NR_OF_REQ];
  83.    };
  84.  
  85. #define RTPREFS_SIZE \
  86.    (sizeof (struct ReqToolsPrefs) - sizeof (struct SignalSemaphore) - 4)
  87.  
  88. /* Flags */
  89.  
  90. #define RTPRB_DIRSFIRST         0L
  91. #define RTPRF_DIRSFIRST         (1L<<RTPRB_DIRSFIRST)
  92. #define RTPRB_DIRSMIXED         1L
  93. #define RTPRF_DIRSMIXED         (1L<<RTPRB_DIRSMIXED)
  94. #define RTPRB_IMMSORT         2L
  95. #define RTPRF_IMMSORT         (1L<<RTPRB_IMMSORT)
  96. #define RTPRB_NOSCRTOFRONT     3L
  97. #define RTPRF_NOSCRTOFRONT     (1L<<RTPRB_NOSCRTOFRONT)
  98.  
  99. /***********************
  100. *                      *
  101. *     Library Base     *
  102. *                      *
  103. ***********************/
  104.  
  105. struct ReqToolsBase {
  106.    struct Library LibNode;
  107.    UBYTE RTFlags;
  108.    UBYTE pad[3];
  109.    BPTR SegList;
  110.  
  111.    /* PUBLIC FIELDS */
  112.  
  113.    /* NOTE: Some versions of the Manx C compiler contain a bug so it gets
  114.             confused by the library bases below.  Add the rt_ prefix to the
  115.             library names to fix the problem (e.g. rt_IntuitionBase). */
  116.  
  117.    /* The following library bases may be read and used by your program */
  118.    struct IntuitionBase *IntuitionBase;
  119.    struct GfxBase *GfxBase;
  120.    struct DosLibrary *DOSBase;
  121.    /* Next two library bases are only (and always) valid on Kickstart 2.0!
  122.       (1.3 version of reqtools also initializes these when run on 2.0) */
  123.    struct Library *GadToolsBase;
  124.    struct Library *UtilityBase;
  125.  
  126.    /* PRIVATE FIELDS, THESE WILL CHANGE FROM RELEASE TO RELEASE! */
  127.  
  128.    /* The RealOpenCnt is for the buffered AvailFonts feature.  Since
  129.       Kickstart 3.0 offers low memory handlers a release of ReqTools for 3.0
  130.       will not use this field and start using the normal OpenCnt again. */
  131.    UWORD RealOpenCnt;
  132.    UWORD AvailFontsLock;
  133.    struct AvailFontsHeader *AvailFontsHeader;
  134.    ULONG FontsAssignType;
  135.    BPTR FontsAssignLock;
  136.    struct AssignList *FontsAssignList;
  137.    struct ReqToolsPrefs ReqToolsPrefs;
  138.    UWORD prefspad;
  139.    };
  140.  
  141. /* types of requesters, for rtAllocRequestA() */
  142. #define RT_FILEREQ         0L
  143. #define RT_REQINFO         1L
  144. #define RT_FONTREQ         2L
  145. /* (V38) */
  146. #define RT_SCREENMODEREQ     3L
  147.  
  148. /***********************
  149. *                      *
  150. *    File requester    *
  151. *                      *
  152. ***********************/
  153.  
  154. /* structure _MUST_ be allocated with rtAllocRequest() */
  155.  
  156. struct rtFileRequester {
  157.    ULONG ReqPos;
  158.    UWORD LeftOffset;
  159.    UWORD TopOffset;
  160.    ULONG Flags;
  161.    /* OBSOLETE IN V38! DON'T USE! */ struct Hook *Hook;
  162.    /* */
  163.    char  *Dir;             /* READ ONLY! Change with rtChangeReqAttrA()! */
  164.    char  *MatchPat;         /* READ ONLY! Change with rtChangeReqAttrA()! */
  165.    /* */
  166.    struct TextFont *DefaultFont;
  167.    ULONG WaitPointer;
  168.    /* (V38) */
  169.    ULONG LockWindow;
  170.    ULONG ShareIDCMP;
  171.    struct Hook *IntuiMsgFunc;
  172.    UWORD reserved1;
  173.    UWORD reserved2;
  174.    UWORD reserved3;
  175.    UWORD ReqHeight;         /* READ ONLY!  Use RTFI_Height tag! */
  176.    /* Private data follows! HANDS OFF :-) */
  177.    };
  178.  
  179. /* returned by rtFileRequestA() if multiselect is enabled,
  180.    free list with rtFreeFileList() */
  181.  
  182. struct rtFileList {
  183.    struct rtFileList *Next;
  184.    ULONG StrLen;         /* -1 for directories */
  185.    char *Name;
  186.    };
  187.  
  188. /* structure passed to RTFI_FilterFunc callback hook by
  189.    volume requester (see RTFI_VolumeRequest tag) */
  190.  
  191. struct rtVolumeEntry {
  192.    ULONG Type;             /* DLT_DEVICE or DLT_DIRECTORY */
  193.    char *Name;
  194.    };
  195.  
  196. /***********************
  197. *                      *
  198. *    Font requester    *
  199. *                      *
  200. ***********************/
  201.  
  202. /* structure _MUST_ be allocated with rtAllocRequest() */
  203.  
  204. struct rtFontRequester {
  205.    ULONG ReqPos;
  206.    UWORD LeftOffset;
  207.    UWORD TopOffset;
  208.    ULONG Flags;
  209.    /* OBSOLETE IN V38! DON'T USE! */ struct Hook *Hook;
  210.    /* */
  211.    struct TextAttr Attr;     /* READ ONLY! */
  212.    /* */
  213.    struct TextFont *DefaultFont;
  214.    ULONG WaitPointer;
  215.    /* (V38) */
  216.    ULONG LockWindow;
  217.    ULONG ShareIDCMP;
  218.    struct Hook *IntuiMsgFunc;
  219.    UWORD reserved1;
  220.    UWORD reserved2;
  221.    UWORD reserved3;
  222.    UWORD ReqHeight;         /* READ ONLY!  Use RTFO_Height tag! */
  223.    /* Private data follows! HANDS OFF :-) */
  224.    };
  225.  
  226. /*************************
  227. *                        *
  228. *  ScreenMode requester  *
  229. *                        *
  230. *************************/
  231.  
  232. /* structure _MUST_ be allocated with rtAllocRequest() */
  233.  
  234. struct rtScreenModeRequester {
  235.    ULONG ReqPos;
  236.    UWORD LeftOffset;
  237.    UWORD TopOffset;
  238.    ULONG Flags;
  239.    ULONG private1;
  240.    /* */
  241.    ULONG DisplayID;         /* READ ONLY! */
  242.    UWORD DisplayWidth;         /* READ ONLY! */
  243.    UWORD DisplayHeight;         /* READ ONLY! */
  244.    /* */
  245.    struct TextFont *DefaultFont;
  246.    ULONG WaitPointer;
  247.    ULONG LockWindow;
  248.    ULONG ShareIDCMP;
  249.    struct Hook *IntuiMsgFunc;
  250.    UWORD reserved1;
  251.    UWORD reserved2;
  252.    UWORD reserved3;
  253.    UWORD ReqHeight;         /* READ ONLY!  Use RTSC_Height tag! */
  254.    /* */
  255.    UWORD DisplayDepth;         /* READ ONLY! */
  256.    UWORD OverscanType;         /* READ ONLY! */
  257.    ULONG AutoScroll;         /* READ ONLY! */
  258.    /* Private data follows! HANDS OFF :-) */
  259.    };
  260.  
  261. /***********************
  262. *                      *
  263. *    Requester Info    *
  264. *                      *
  265. ***********************/
  266.  
  267. /* for rtEZRequestA(), rtGetLongA(), rtGetStringA() and rtPaletteRequestA(),
  268.    _MUST_ be allocated with rtAllocRequest() */
  269.  
  270. struct rtReqInfo {
  271.    ULONG ReqPos;
  272.    UWORD LeftOffset;
  273.    UWORD TopOffset;
  274.    ULONG Width;             /* not for rtEZRequestA() */
  275.    char *ReqTitle;         /* currently only for rtEZRequestA() */
  276.    ULONG Flags;
  277.    struct TextFont *DefaultFont; /* currently only for rtPaletteRequestA() */
  278.    ULONG WaitPointer;
  279.    /* (V38) */
  280.    ULONG LockWindow;
  281.    ULONG ShareIDCMP;
  282.    struct Hook *IntuiMsgFunc;
  283.    /* structure may be extended in future */
  284.    };
  285.  
  286. /***********************
  287. *                      *
  288. *     Handler Info     *
  289. *                      *
  290. ***********************/
  291.  
  292. /* for rtReqHandlerA(), will be allocated for you when you use
  293.    the RT_ReqHandler tag, never try to allocate this yourself! */
  294.  
  295. struct rtHandlerInfo {
  296.    ULONG private1;
  297.    ULONG WaitMask;
  298.    ULONG DoNotWait;
  299.    /* Private data follows, HANDS OFF :-) */
  300.    };
  301.  
  302. /* possible return codes from rtReqHandlerA() */
  303.  
  304. #define CALL_HANDLER         (ULONG)0x80000000
  305.  
  306.  
  307. /*************************************
  308. *                                    *
  309. *                TAGS                *
  310. *                                    *
  311. *************************************/
  312.  
  313. #define RT_TagBase         TAG_USER
  314.  
  315. /*** tags understood by most requester functions ***
  316. */
  317. /* optional pointer to window */
  318. #define RT_Window         (RT_TagBase+1)
  319. /* idcmp flags requester should abort on (useful for IDCMP_DISKINSERTED) */
  320. #define RT_IDCMPFlags         (RT_TagBase+2)
  321. /* position of requester window (see below) - default REQPOS_POINTER */
  322. #define RT_ReqPos         (RT_TagBase+3)
  323. /* leftedge offset of requester relative to position specified by RT_ReqPos */
  324. #define RT_LeftOffset         (RT_TagBase+4)
  325. /* topedge offset of requester relative to position specified by RT_ReqPos */
  326. #define RT_TopOffset         (RT_TagBase+5)
  327. /* name of public screen to put requester on (Kickstart 2.0 only!) */
  328. #define RT_PubScrName         (RT_TagBase+6)
  329. /* address of screen to put requester on */
  330. #define RT_Screen         (RT_TagBase+7)
  331. /* tagdata must hold the address of (!) an APTR variable */
  332. #define RT_ReqHandler         (RT_TagBase+8)
  333. /* font to use when screen font is rejected, _MUST_ be fixed-width font!
  334.    (struct TextFont *, not struct TextAttr *!)
  335.    - default GfxBase->DefaultFont */
  336. #define RT_DefaultFont         (RT_TagBase+9)
  337. /* boolean to set the standard wait pointer in window - default FALSE */
  338. #define RT_WaitPointer         (RT_TagBase+10)
  339. /* (V38) char preceding keyboard shortcut characters (will be underlined) */
  340. #define RT_Underscore         (RT_TagBase+11)
  341. /* (V38) share IDCMP port with window - default FALSE */
  342. #define RT_ShareIDCMP         (RT_TagBase+12)
  343. /* (V38) lock window and set standard wait pointer - default FALSE */
  344. #define RT_LockWindow         (RT_TagBase+13)
  345. /* (V38) boolean to make requester's screen pop to front - default TRUE */
  346. #define RT_ScreenToFront     (RT_TagBase+14)
  347. /* (V38) Requester should use this font - default: screen font */
  348. #define RT_TextAttr         (RT_TagBase+15)
  349. /* (V38) call this hook for every IDCMP message not for requester */
  350. #define RT_IntuiMsgFunc         (RT_TagBase+16)
  351. /* (V38) Locale ReqTools should use for text */
  352. #define RT_Locale         (RT_TagBase+17)
  353.  
  354. /*** tags specific to rtEZRequestA ***
  355. */
  356. /* title of requester window - english default "Request" or "Information" */
  357. #define RTEZ_ReqTitle         (RT_TagBase+20)
  358. /* (RT_TagBase+21) reserved */
  359. /* various flags (see below) */
  360. #define RTEZ_Flags         (RT_TagBase+22)
  361. /* default response (activated by pressing RETURN) - default TRUE */
  362. #define RTEZ_DefaultResponse     (RT_TagBase+23)
  363.  
  364. /*** tags specific to rtGetLongA ***
  365. */
  366. /* minimum allowed value - default MININT */
  367. #define RTGL_Min         (RT_TagBase+30)
  368. /* maximum allowed value - default MAXINT */
  369. #define RTGL_Max         (RT_TagBase+31)
  370. /* suggested width of requester window (in pixels) */
  371. #define RTGL_Width         (RT_TagBase+32)
  372. /* boolean to show the default value - default TRUE */
  373. #define RTGL_ShowDefault     (RT_TagBase+33)
  374. /* (V38) string with possible responses - english default " _Ok |_Cancel" */
  375. #define RTGL_GadFmt          (RT_TagBase+34)
  376. /* (V38) optional arguments for RTGL_GadFmt */
  377. #define RTGL_GadFmtArgs         (RT_TagBase+35)
  378. /* (V38) invisible typing - default FALSE */
  379. #define RTGL_Invisible         (RT_TagBase+36)
  380. /* (V38) window backfill - default TRUE */
  381. #define RTGL_BackFill         (RT_TagBase+37)
  382. /* (V38) optional text above gadget */
  383. #define RTGL_TextFmt         (RT_TagBase+38)
  384. /* (V38) optional arguments for RTGS_TextFmt */
  385. #define RTGL_TextFmtArgs     (RT_TagBase+39)
  386. /* (V38) various flags (see below) */
  387. #define RTGL_Flags         RTEZ_Flags
  388.  
  389. /*** tags specific to rtGetStringA ***
  390. */
  391. /* suggested width of requester window (in pixels) */
  392. #define RTGS_Width         RTGL_Width
  393. /* allow empty string to be accepted - default FALSE */
  394. #define RTGS_AllowEmpty         (RT_TagBase+80)
  395. /* (V38) string with possible responses - english default " _Ok |_Cancel" */
  396. #define RTGS_GadFmt          RTGL_GadFmt
  397. /* (V38) optional arguments for RTGS_GadFmt */
  398. #define RTGS_GadFmtArgs         RTGL_GadFmtArgs
  399. /* (V38) invisible typing - default FALSE */
  400. #define RTGS_Invisible         RTGL_Invisible
  401. /* (V38) window backfill - default TRUE */
  402. #define RTGS_BackFill         RTGL_BackFill
  403. /* (V38) optional text above gadget */
  404. #define RTGS_TextFmt         RTGL_TextFmt
  405. /* (V38) optional arguments for RTGS_TextFmt */
  406. #define RTGS_TextFmtArgs     RTGL_TextFmtArgs
  407. /* (V38) various flags (see below) */
  408. #define RTGS_Flags         RTEZ_Flags
  409.  
  410. /*** tags specific to rtFileRequestA ***
  411. */
  412. /* various flags (see below) */
  413. #define RTFI_Flags         (RT_TagBase+40)
  414. /* suggested height of file requester */
  415. #define RTFI_Height         (RT_TagBase+41)
  416. /* replacement text for 'Ok' gadget (max 6 chars) */
  417. #define RTFI_OkText         (RT_TagBase+42)
  418. /* (V38) bring up volume requester, tag data holds flags (see below) */
  419. #define RTFI_VolumeRequest     (RT_TagBase+43)
  420. /* (V38) call this hook for every file in the directory */
  421. #define RTFI_FilterFunc         (RT_TagBase+44)
  422. /* (V38) allow empty file to be accepted - default FALSE */
  423. #define RTFI_AllowEmpty         (RT_TagBase+45)
  424.  
  425. /*** tags specific to rtFontRequestA ***
  426. */
  427. /* various flags (see below) */
  428. #define RTFO_Flags         RTFI_Flags
  429. /* suggested height of font requester */
  430. #define RTFO_Height         RTFI_Height
  431. /* replacement text for 'Ok' gadget (max 6 chars) */
  432. #define RTFO_OkText         RTFI_OkText
  433. /* suggested height of font sample display - default 24 */
  434. #define RTFO_SampleHeight     (RT_TagBase+60)
  435. /* minimum height of font displayed */
  436. #define RTFO_MinHeight         (RT_TagBase+61)
  437. /* maximum height of font displayed */
  438. #define RTFO_MaxHeight         (RT_TagBase+62)
  439. /* [(RT_TagBase+63) to (RT_TagBase+66) used below] */
  440. /* (V38) call this hook for every font */
  441. #define RTFO_FilterFunc         RTFI_FilterFunc
  442.  
  443. /*** (V38) tags for rtScreenModeRequestA ***
  444. */
  445. /* various flags (see below) */
  446. #define RTSC_Flags         RTFI_Flags
  447. /* suggested height of screenmode requester */
  448. #define RTSC_Height         RTFI_Height
  449. /* replacement text for 'Ok' gadget (max 6 chars) */
  450. #define RTSC_OkText         RTFI_OkText
  451. /* property flags (see also RTSC_PropertyMask) */
  452. #define RTSC_PropertyFlags     (RT_TagBase+90)
  453. /* property mask - default all bits in RTSC_PropertyFlags considered */
  454. #define RTSC_PropertyMask     (RT_TagBase+91)
  455. /* minimum display width allowed */
  456. #define RTSC_MinWidth         (RT_TagBase+92)
  457. /* maximum display width allowed */
  458. #define RTSC_MaxWidth         (RT_TagBase+93)
  459. /* minimum display height allowed */
  460. #define RTSC_MinHeight         (RT_TagBase+94)
  461. /* maximum display height allowed */
  462. #define RTSC_MaxHeight         (RT_TagBase+95)
  463. /* minimum display depth allowed */
  464. #define RTSC_MinDepth         (RT_TagBase+96)
  465. /* maximum display depth allowed */
  466. #define RTSC_MaxDepth         (RT_TagBase+97)
  467. /* call this hook for every display mode id */
  468. #define RTSC_FilterFunc         RTFI_FilterFunc
  469.  
  470. /*** tags for rtChangeReqAttrA ***
  471. */
  472. /* file requester - set directory */
  473. #define RTFI_Dir         (RT_TagBase+50)
  474. /* file requester - set wildcard pattern */
  475. #define RTFI_MatchPat         (RT_TagBase+51)
  476. /* file requester - add a file or directory to the buffer */
  477. #define RTFI_AddEntry         (RT_TagBase+52)
  478. /* file requester - remove a file or directory from the buffer */
  479. #define RTFI_RemoveEntry     (RT_TagBase+53)
  480. /* font requester - set font name of selected font */
  481. #define RTFO_FontName         (RT_TagBase+63)
  482. /* font requester - set font size */
  483. #define RTFO_FontHeight         (RT_TagBase+64)
  484. /* font requester - set font style */
  485. #define RTFO_FontStyle         (RT_TagBase+65)
  486. /* font requester - set font flags */
  487. #define RTFO_FontFlags         (RT_TagBase+66)
  488. /* (V38) screenmode requester - get display attributes from screen */
  489. #define RTSC_ModeFromScreen     (RT_TagBase+80)
  490. /* (V38) screenmode requester - set display mode id (32-bit extended) */
  491. #define RTSC_DisplayID         (RT_TagBase+81)
  492. /* (V38) screenmode requester - set display width */
  493. #define RTSC_DisplayWidth     (RT_TagBase+82)
  494. /* (V38) screenmode requester - set display height */
  495. #define RTSC_DisplayHeight     (RT_TagBase+83)
  496. /* (V38) screenmode requester - set display depth */
  497. #define RTSC_DisplayDepth     (RT_TagBase+84)
  498. /* (V38) screenmode requester - set overscan type, 0 for regular size */
  499. #define RTSC_OverscanType     (RT_TagBase+85)
  500. /* (V38) screenmode requester - set autoscroll */
  501. #define RTSC_AutoScroll         (RT_TagBase+86)
  502.  
  503. /*** tags for rtPaletteRequestA ***
  504. */
  505. /* initially selected color - default 1 */
  506. #define RTPA_Color         (RT_TagBase+70)
  507.  
  508. /*** tags for rtReqHandlerA ***
  509. */
  510. /* end requester by software control, set tagdata to REQ_CANCEL, REQ_OK or
  511.    in case of rtEZRequest to the return value */
  512. #define RTRH_EndRequest         (RT_TagBase+60)
  513.  
  514. /*** tags for rtAllocRequestA ***/
  515. /* no tags defined yet */
  516.  
  517.  
  518. /************
  519. * RT_ReqPos *
  520. ************/
  521. #define REQPOS_POINTER         0L
  522. #define REQPOS_CENTERWIN     1L
  523. #define REQPOS_CENTERSCR     2L
  524. #define REQPOS_TOPLEFTWIN     3L
  525. #define REQPOS_TOPLEFTSCR     4L
  526.  
  527. /******************
  528. * RTRH_EndRequest *
  529. ******************/
  530. #define REQ_CANCEL         0L
  531. #define REQ_OK             1L
  532.  
  533. /***************************************
  534. * flags for RTFI_Flags and RTFO_Flags  *
  535. * or filereq->Flags and fontreq->Flags *
  536. ***************************************/
  537. #define FREQB_NOBUFFER         2L
  538. #define FREQF_NOBUFFER         (1L<<FREQB_NOBUFFER)
  539.  
  540. /*****************************************
  541. * flags for RTFI_Flags or filereq->Flags *
  542. *****************************************/
  543. #define FREQB_MULTISELECT     0L
  544. #define FREQF_MULTISELECT     (1L<<FREQB_MULTISELECT)
  545. #define FREQB_SAVE         1L
  546. #define FREQF_SAVE         (1L<<FREQB_SAVE)
  547. #define FREQB_NOFILES         3L
  548. #define FREQF_NOFILES         (1L<<FREQB_NOFILES)
  549. #define FREQB_PATGAD         4L
  550. #define FREQF_PATGAD         (1L<<FREQB_PATGAD)
  551. #define FREQB_SELECTDIRS     12L
  552. #define FREQF_SELECTDIRS     (1L<<FREQB_SELECTDIRS)
  553.  
  554. /*****************************************
  555. * flags for RTFO_Flags or fontreq->Flags *
  556. *****************************************/
  557. #define FREQB_FIXEDWIDTH     5L
  558. #define FREQF_FIXEDWIDTH     (1L<<FREQB_FIXEDWIDTH)
  559. #define FREQB_COLORFONTS     6L
  560. #define FREQF_COLORFONTS     (1L<<FREQB_COLORFONTS)
  561. #define FREQB_CHANGEPALETTE     7L
  562. #define FREQF_CHANGEPALETTE     (1L<<FREQB_CHANGEPALETTE)
  563. #define FREQB_LEAVEPALETTE     8L
  564. #define FREQF_LEAVEPALETTE     (1L<<FREQB_LEAVEPALETTE)
  565. #define FREQB_SCALE         9L
  566. #define FREQF_SCALE         (1L<<FREQB_SCALE)
  567. #define FREQB_STYLE         10L
  568. #define FREQF_STYLE         (1L<<FREQB_STYLE)
  569.  
  570. /*****************************************************
  571. * (V38) flags for RTSC_Flags or screenmodereq->Flags *
  572. *****************************************************/
  573. #define SCREQB_SIZEGADS         13L
  574. #define SCREQF_SIZEGADS         (1L<<SCREQB_SIZEGADS)
  575. #define SCREQB_DEPTHGAD         14L
  576. #define SCREQF_DEPTHGAD         (1L<<SCREQB_DEPTHGAD)
  577. #define SCREQB_NONSTDMODES     15L
  578. #define SCREQF_NONSTDMODES     (1L<<SCREQB_NONSTDMODES)
  579. #define SCREQB_GUIMODES         16L
  580. #define SCREQF_GUIMODES         (1L<<SCREQB_GUIMODES)
  581. #define SCREQB_AUTOSCROLLGAD     18L
  582. #define SCREQF_AUTOSCROLLGAD     (1L<<SCREQB_AUTOSCROLLGAD)
  583. #define SCREQB_OVERSCANGAD     19L
  584. #define SCREQF_OVERSCANGAD     (1L<<SCREQB_OVERSCANGAD)
  585.  
  586. /*****************************************
  587. * flags for RTEZ_Flags or reqinfo->Flags *
  588. *****************************************/
  589. #define EZREQB_NORETURNKEY     0L
  590. #define EZREQF_NORETURNKEY     (1L<<EZREQB_NORETURNKEY)
  591. #define EZREQB_LAMIGAQUAL     1L
  592. #define EZREQF_LAMIGAQUAL     (1L<<EZREQB_LAMIGAQUAL)
  593. #define EZREQB_CENTERTEXT     2L
  594. #define EZREQF_CENTERTEXT     (1L<<EZREQB_CENTERTEXT)
  595.  
  596. /***********************************************
  597. * (V38) flags for RTGL_Flags or reqinfo->Flags *
  598. ***********************************************/
  599. #define GLREQB_CENTERTEXT     EZREQB_CENTERTEXT
  600. #define GLREQF_CENTERTEXT     EZREQF_CENTERTEXT
  601. #define GLREQB_HIGHLIGHTTEXT     3L
  602. #define GLREQF_HIGHLIGHTTEXT     (1L<<GLREQB_HIGHLIGHTTEXT)
  603.  
  604. /***********************************************
  605. * (V38) flags for RTGS_Flags or reqinfo->Flags *
  606. ***********************************************/
  607. #define GSREQB_CENTERTEXT     EZREQB_CENTERTEXT
  608. #define GSREQF_CENTERTEXT     EZREQF_CENTERTEXT
  609. #define GSREQB_HIGHLIGHTTEXT     GLREQB_HIGHLIGHTTEXT
  610. #define GSREQF_HIGHLIGHTTEXT     GLREQF_HIGHLIGHTTEXT
  611.  
  612. /*****************************************
  613. * (V38) flags for RTFI_VolumeRequest tag *
  614. *****************************************/
  615. #define VREQB_NOASSIGNS         0L
  616. #define VREQF_NOASSIGNS         (1L<<VREQB_NOASSIGNS)
  617. #define VREQB_NODISKS         1L
  618. #define VREQF_NODISKS         (1L<<VREQB_NODISKS)
  619. #define VREQB_ALLDISKS         2L
  620. #define VREQF_ALLDISKS         (1L<<VREQB_ALLDISKS)
  621.  
  622. /*
  623.    Following things are obsolete in ReqTools V38.
  624.    DON'T USE THESE IN NEW CODE!
  625. */
  626. #ifndef NO_REQTOOLS_OBSOLETE
  627. #define REQHOOK_WILDFILE 0L
  628. #define REQHOOK_WILDFONT 1L
  629. #define FREQB_DOWILDFUNC 11L                   
  630. #define FREQF_DOWILDFUNC (1L<<FREQB_DOWILDFUNC)
  631. #endif
  632.  
  633. #endif /* LIBRARIES_REQTOOLS_H */
  634.